home *** CD-ROM | disk | FTP | other *** search
/ Much MORE than Just FREE Internet Access / Much More Than Just FREE Internet Access (Cookbook)(LineOne).ISO / chkdun.bat < prev    next >
DOS Batch File  |  1999-11-05  |  492b  |  17 lines

  1. @echo off
  2.  
  3. :checkfile
  4. if exist "%windir%\start menu\programs\accessories\dial-up networking.lnk" goto lab2
  5. if exist "%windir%\start menu\programs\accessories\communications\dial-up networking.lnk" goto lab2
  6. if exist "%USERPROFILE%\start menu\programs\accessories\dial-up networking.lnk" goto lab2
  7. :lab1
  8.         REM File not found.
  9.         notepad signup\dun\dun.txt
  10.         goto end
  11. :lab2
  12.         REM File found.
  13.         start signup\dun\signup.isp
  14.         goto end
  15. :end
  16. exit
  17.